home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <vcl\vcl.h>
- #pragma hdrstop
-
- #include "Hops1.h"
-
- //---------------------------------------------------------------------------
- #pragma resource "*.dfm"
-
- const String Pfad = "c:\\cpp\\buch\\"; // oder Pfad fⁿr Buch-CD
- TForm1 *Form1;
- //---------------------------------------------------------------------------
- __fastcall TForm1::TForm1(TComponent* Owner)
- : TForm(Owner)
- {
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::FormCreate(TObject *Sender)
- {
- Movie1 = new TMovie (this);
- Movie1->Parent = this;
- Movie1->Stretch = true;
- Movie1->Picture->LoadFromFile (Pfad+"Hops1.bmp");
- }
- //---------------------------------------------------------------------------